home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / cm100exe.zip / CM100EXE.EXE / SAMPLES / MASM / GREETING.C < prev    next >
C/C++ Source or Header  |  1991-11-16  |  238b  |  17 lines

  1. /* greeting.c - Program to print "Hello World" */
  2.  
  3. #include "a_hello.h"
  4. #include "a_world.h"
  5. #include "greeting.h"
  6. /* CMAKE - INCLUDE END */
  7.  
  8. int main ( void )
  9.  
  10. {
  11. a_print_hello ( ) ;
  12.  
  13. a_print_world ( ) ;
  14.  
  15. return ( 0 ) ;
  16. }
  17.